home *** CD-ROM | disk | FTP | other *** search
Makefile | 1985-09-13 | 945 b | 57 lines | [TEXT/ttxt] |
- INCLUDE = /usr/stanford/include
-
- SYSHFILES = $(INCLUDE)/mac/quickdraw.h $(INCLUDE)/mac/osintf.h \
- $(INCLUDE)/mac/toolintf.h
-
- HFILES = othello.h
-
- CFILES = othello.c menu.c \
- doflips.c domove.c \
- drawboard.c \
- findmoves.c \
- getmove.c \
- info.c initboard.c \
- move.c newgame.c \
- placestone.c \
- undo.c
-
- SRCS = othello.rc $(HFILES) $(CFILES)
-
- OFILES = othello.b menu.b \
- doflips.b domove.b \
- drawboard.b \
- findmoves.b \
- getmove.b \
- info.b initboard.b \
- move.b newgame.b \
- placestone.b \
- undo.b
-
- .SUFFIXES: .rsrc .b
-
- .c.b:
- cc68 -c -O $<
-
- Othello.rsrc: b.out othello.rc
- rmaker othello.rc
-
- b.out: $(OFILES)
- cc68 -z -m -O $(OFILES)
-
- $(OFILES): $(SYSHFILES) $(HFILES)
-
- dl: Othello.rsrc
- macput -r Othello
-
- othello.shar: AboutOthello Makefile $(SRCS)
- shar AboutOthello Makefile $(SRCS) >othello.shar
-
- pr: $(SRCS)
- pr $(SRCS)
-
- spr: $(SRCS)
- pr -l83 $(SRCS) | spr
-
- rpr: $(SRCS)
- rpr -numb $(SRCS)
-